/* Force body and html to occupy full height */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;

}
/* ====== Global Font and Variables ====== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
  --navy: #2c599d;
  --orange: #f98125;
  --white: #ffffff;
  --gray: #f8f9fa;
  --font-main: 'Poppins', sans-serif;
}

/* ====== Reset and Base ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

/* ====== Header & Hero ====== */
.banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-section {
  position: relative;
  height: 100%;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Keep full coverage without zoom distortion */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35); /* Optional: Slight dark overlay for contrast */
  z-index: 2;
}

.hero-title{
  font-size: 2.1rem;
}
/* ====== Navigation ====== */
nav {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}

.logo-container {
  width: 150px;
  height: auto;
  visibility: hidden; /* 👈 hides logo but keeps spacing */
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--orange);
}

.download-btn {
  background-color: var(--orange);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.download-btn:hover {
  background-color: #e76f14;
}

/* ====== Mobile Nav ====== */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .nav-links {
    padding: 15px 20px;
      background-color: var(--navy);
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1)
  }

  .nav-links.show {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  nav {
    padding: 20px;
  }
    /* Logo sizing for mobile */
    .logo-container {
      width: 120px;
    }
}

/* ====== Hero Content ====== */
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  text-align: left;
  padding: 150px 60px 0 60px;
  max-width: 600px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.text-navy {
  color: var(--navy);
}

.hero-subtext {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.hero-buttons .btn {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  margin-right: 15px;
  text-decoration: none;
  display: inline-block;
}

.btn-orange {
  background-color: var(--orange);
  color: var(--white);
  text-decoration: none;
}

.btn-orange:hover {
  background-color: #e76f14;
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--navy);
}

/* Responsive Hero Text */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-content {
    padding: 130px 20px 0 20px;
    text-align: center;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    margin-bottom: 10px;
    width: 80%;
  }
}


.btn-orange {
  background-color: #f98125;
  color: black;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-orange:hover {
  background-color: #d76d1d;
}

.btn-outline {
  border: 2px solid #ffffff;
  background-color: transparent;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: #ffffff;
  color: #2c599d;
}
.text-navy { color: #2c599d; }
.text-orange { color: #f98125; }

a.hero-buttons {
  text-decoration: none;
}
button, .cta-button, .hero-button, a.cta-button {
  text-decoration: none !important;  /* Removes underline */
  border: none;
  outline: none;
  font-family: 'Poppins', sans-serif; /* 👈 Match global font */
  font-weight: 600;
  cursor: pointer;
}
.trusted-by-section {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

.trusted-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
}

.trusted-subtext {
  font-size: 1.1rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.logo-slider {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.logo-slider img {
  height: 150px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  background: white;
  padding: 12px;
  border-radius: 12px;

}

.logo-slider img:hover {
  transform: scale(1.05);
}

.trusted-by-section .cta-button {
  background-color: #f98125;
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.trusted-by-section .cta-button:hover {
  background-color: #e06d1c;
}

.products-section {
  background-color: #f0f7fd;
  padding: 80px 10%;
}

.products-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.products-text {
  flex: 1;
  min-width: 300px;
}

.products-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.products-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.products-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 300px;
}

.product-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}


.community-banner {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.community-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.9;
}

.community-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent dark overlay */
  border-radius: 10px;
  max-width: 800px;
}

.community-overlay h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.community-overlay span.text-navy {
  color: #ffffff; /* white override */
}

.community-overlay span.text-orange {
  color: #f98125;
}

.community-overlay p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #f1f1f1;
}
.contact-section {
  background-color: #f8f9fa;
  padding: 80px 20px;
  text-align: center;
}

.contact-content {
  max-width: 700px;
  margin: 0 auto;
}

.contact-content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.contact-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}
.about-tally-home {
  background-color: #eaf4fb; /* light blue background */
  padding: 80px 0;
}

.about-tally-home .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.about-home-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-home-image {
  flex: 1;
  min-width: 300px;
}

.about-home-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-home-text {
  flex: 1;
  min-width: 300px;
  color: black;
  font-family: 'Poppins', sans-serif;
}

.about-home-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #2c599d;
}

.about-home-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.btn-orange {
  display: inline-block;
  background-color: #f98125;
  color: black;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-orange:hover {
  background-color: #e36e10;
}
@media (max-width: 768px) {
  .about-home-grid {
    flex-direction: column;
    text-align: center;
  }

  .about-home-text h2 {
    font-size: 28px;
  }

  .about-home-text p {
    font-size: 16px;
  }
}
